home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / tcl / extend / tests / compat.test < prev    next >
Encoding:
Text File  |  1993-10-26  |  1.2 KB  |  33 lines  |  [TEXT/MPS ]

  1. #
  2. # compat.test
  3. #
  4. # Tests Tcl library compatiblity routines.
  5. #---------------------------------------------------------------------------
  6. # Copyright 1992-1993 Karl Lehenbauer and Mark Diekhans.
  7. #
  8. # Permission to use, copy, modify, and distribute this software and its
  9. # documentation for any purpose and without fee is hereby granted, provided
  10. # that the above copyright notice appear in all copies.  Karl Lehenbauer and
  11. # Mark Diekhans make no representations about the suitability of this
  12. # software for any purpose.  It is provided "as is" without express or
  13. # implied warranty.
  14. #------------------------------------------------------------------------------
  15. # $Id: compat.test,v 2.5 1993/07/20 08:35:45 markd Exp $
  16. #------------------------------------------------------------------------------
  17. #
  18.  
  19. if {[info procs test] != "test"} then {source testlib.tcl}
  20. eval $SAVED_UNKNOWN
  21.  
  22. Test assign_fields-1.1 {assign_fields command} {
  23.     assign_fields "a b {c d} e" alpha beta gamma delta epsilon
  24.     list $alpha $beta $gamma $delta $epsilon
  25. } 0 "a b {c d} e {}"
  26.  
  27. Test assign_fields-1.2 {assign_fields command} {
  28.     assign_fields "a b {c d} e"
  29. } 1 {wrong # args: lassign list varname ?varname..?}
  30.  
  31. rename unknown {}
  32.  
  33.